home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 1
/
CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso
/
Aminet
/
comm
/
tcp
/
AmiTCPsdk_40.lha
/
AmiTCP-4.0
/
netinclude
/
utime.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-03
|
492b
|
20 lines
#ifndef UTIME_H
#define UTIME_H \
"$Id: utime.h,v 4.1 1994/10/03 20:52:20 ppessi Exp $"
/*
* Definitions and prototype for the utime() (in the net.lib)
*
* Copyright © 1994 AmiTCP/IP Group,
* Network Solutions Development, Inc.
* All rights reserved.
*/
struct utimbuf {
time_t actime; /* Access time */
time_t modtime; /* Modification time */
};
int utime(const char *, const struct utimbuf *);
#endif /* !UTIME_H */